crypto/cipher.gcmFallback.cipher (field)

8 uses

	crypto/cipher (current package)
		gcm.go#L220: 	return &gcmFallback{cipher: cipher, nonceSize: nonceSize, tagSize: tagSize}, nil
		gcm.go#L227: 	cipher    Block
		gcm.go#L260: 	g.cipher.Encrypt(H[:], H[:])
		gcm.go#L262: 	gcmCounterCryptGeneric(g.cipher, tagMask[:], tagMask[:], &counter)
		gcm.go#L264: 	gcmCounterCryptGeneric(g.cipher, out, plaintext, &counter)
		gcm.go#L299: 	g.cipher.Encrypt(H[:], H[:])
		gcm.go#L301: 	gcmCounterCryptGeneric(g.cipher, tagMask[:], tagMask[:], &counter)
		gcm.go#L317: 	gcmCounterCryptGeneric(g.cipher, out, ciphertext, &counter)